Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632074 Views

Latest files of /cody/vishal-dcode/Progress Steps

app.js cody/vishal-dcode/Progress Steps/app.js
3 Views
0 Comments
const progress = document.getElementById("progress");
const prev = document.getElementById("prev");
const next = document.getElementById("next");
const circles = document.querySelectorAll(".circle");

// Set the current active step to 1
let currentActive = 1;

style.css cody/vishal-dcode/Progress Steps/style.css
5 Views
0 Comments
:root {
--clr-primary: #ff6e31;
--clr-empty: gray;
}

* {
margin: 0;
padding: 0;
index.html cody/vishal-dcode/Progress Steps/index.html
11 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Progress Steps</title>